home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / NETDLC.IN_ / netdlc.inf
Encoding:
Windows Setup INFormation  |  1999-11-06  |  3.1 KB  |  100 lines

  1. ;-------------------------------------------------------------------------
  2. ; Microsoft DLC Protocol
  3. ;
  4. ; Copyright (c) 1993-1999, Microsoft Corporation
  5. ;-------------------------------------------------------------------------
  6.  
  7. [Version]
  8. Signature   = "$Windows NT$"
  9. Class       = NetTrans
  10. ClassGUID   = {4d36e975-e325-11ce-bfc1-08002be10318}
  11. Provider    = %Msft%
  12. LayoutFile  = layout.inf
  13. DriverVer=11/06/1999,5.00.2175.1
  14.  
  15. [Manufacturer]
  16. %Msft%=MSFT
  17.  
  18. [MSFT]
  19. %DLC_Desc%=Install_DLC, MS_DLC
  20.  
  21. [Install_DLC]
  22. Characteristics=0x0
  23. AddReg=Inst_Ndi_DLC             ; Specify the [N]etwork [d]evice [i]nstaller
  24. ;CopyFiles=CopyFiles_Inst_Drv_DLC
  25. ;LOGCONFIG=DLC_Reboot
  26.  
  27. ;-------------------------------------------------------------------------
  28. ; Specify the Network Device Installer
  29. ;-------------------------------------------------------------------------
  30. [Inst_Ndi_DLC]
  31. HKR,Ndi,Service,,"Dlc"
  32. HKR,Ndi,CoServices,%REG_MULTI_SZ%,"Dlc"
  33. HKR,Ndi,HelpText,,"%DLC_HelpText%"
  34. HKR,Ndi\Interfaces,UpperRange,,"dlc"
  35. HKR,Ndi\Interfaces,LowerRange,,"ndis5,ndis4,ndis5_dlc"
  36.  
  37. ;[DLC_Reboot]
  38. ;ConfigPriority=RESTART
  39.  
  40. ;-------------------------------------------------------------------------
  41. ; Base Entry Point for DLC Service Installation
  42. ;-------------------------------------------------------------------------
  43. [Install_DLC.Services]
  44. AddService=Dlc,,DLC_Service_Inst
  45.  
  46. [Install_DLC.PrintMonitor]
  47. AddMonitor=Install_DLC.AddPrintMonitor
  48.  
  49. [Install_DLC.AddPrintMonitor]
  50. PrintMonitorName = "%HP_PORTMON%"
  51. PrintMonitorDLL  = "hpmon.dll"
  52.  
  53. ;-------------------------------------------------------------------------
  54. ; IPX Service Definitions and Settings
  55. ;-------------------------------------------------------------------------
  56. [DLC_Service_Inst]
  57. DisplayName     = %DLC_Desc%
  58. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  59. StartType       = 1 ;SERVICE_SYSTEM_START
  60. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  61. ServiceBinary   = %12%\dlc.sys
  62. AddReg          = AddReg_Service_Inst
  63. Description     = %DLC_Desc%
  64.  
  65. [AddReg_Service_Inst]
  66. HKR,"Parameters",,%FLG_ADDREG_KEYONLY%,
  67.  
  68. ;-------------------------------------------------------------------------
  69. ; Section for driving removal of the DLC service registration
  70. ;-------------------------------------------------------------------------
  71. [Install_DLC.Remove.Services]
  72. DelService=DLC
  73.  
  74. [Install_DLC.Remove.PrintMonitor]
  75. DelMonitor = Del_Static_DLC.DelPrintMonitor
  76.  
  77. [Del_Static_DLC.DelPrintMonitor]
  78. PrintMonitorName = "%HP_PORTMON%"
  79.  
  80. ;-------------------------------------------------------------------------
  81. ; Specify component files destined for the 'Drivers' directory
  82. ;-------------------------------------------------------------------------
  83. ;[DestinationDirs]
  84. ;CopyFiles_Inst_Drv_DLC  = 12    ; System[32]\Drivers
  85.  
  86. ;[CopyFiles_Inst_Drv_DLC]
  87. ;dlc.sys,,,2         ; The DLC Driver
  88.  
  89. [Strings]
  90. Msft = "Microsoft"
  91. HP_PORTMON = "Hewlett-Packard Network Port"
  92.  
  93. DLC_Desc = "DLC Protocol"
  94. DLC_HelpText = "Data Link Control enables this computer to connect to an IBM mainframe and set up printers attached directly to network control."
  95.  
  96. FLG_ADDREG_KEYONLY=0x00000010
  97. REG_MULTI_SZ = 0x10000
  98. REG_DWORD = 0x10001
  99.  
  100.